home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 497 b | 31 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- deferred class BENCH2
- --
- -- Are FIXED_ARRAY running faster than ARRAY ?
- --
-
- feature {NONE}
-
- cltn: COLLECTION[INTEGER] is
- deferred
- end;
-
- upper: INTEGER is 900000;
-
- bench is
- local
- i: INTEGER;
- do
- from
- i := cltn.upper - 1;
- until
- i = cltn.lower
- loop
- cltn.put(cltn.item(i-1),i);
- i := i - 1;
- end;
- end;
- end
-